From: Aaron Schulz Date: Tue, 29 Dec 2015 09:46:05 +0000 (-0800) Subject: Fix some FSFileBackend IDEA errors X-Git-Tag: 1.31.0-rc.0~8509^2 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=1e03c508912c194a0f302d39733519d1a1acd365;p=lhc%2Fweb%2Fwiklou.git Fix some FSFileBackend IDEA errors Change-Id: I372ad7af21f223b670498ac17ecac90918ceb2a8 --- diff --git a/includes/filebackend/FSFileBackend.php b/includes/filebackend/FSFileBackend.php index 07370ad289..f11c218f57 100644 --- a/includes/filebackend/FSFileBackend.php +++ b/includes/filebackend/FSFileBackend.php @@ -64,6 +64,7 @@ class FSFileBackend extends FileBackendStore { * - containerPaths : Map of container names to custom file system directories. * This should only be used for backwards-compatibility. * - fileMode : Octal UNIX file permissions to use on files stored. + * @param array $config */ public function __construct( array $config ) { parent::__construct( $config ); @@ -561,9 +562,6 @@ class FSFileBackend extends FileBackendStore { } } - /** - * @see FileBackendStore::doClearCache() - */ protected function doClearCache( array $paths = null ) { clearstatcache(); // clear the PHP file stat cache } @@ -682,7 +680,7 @@ class FSFileBackend extends FileBackendStore { } /** - * @param FileBackendStoreOpHandle[] $fileOpHandles + * @param FSFileOpHandle[] $fileOpHandles * * @return Status[] */